home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / MetalDesktopIconUI.java < prev    next >
Text File  |  1998-06-30  |  4KB  |  113 lines

  1. /*
  2.  * @(#)MetalDesktopIconUI.java    1.8 98/02/06
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.metal;
  22.  
  23. import java.awt.*;
  24. import java.awt.event.*;
  25. import com.sun.java.swing.*;
  26. import com.sun.java.swing.border.*;
  27. import com.sun.java.swing.plaf.*;
  28. import java.beans.*;
  29. import java.util.EventListener;
  30. import java.io.Serializable;
  31. import com.sun.java.swing.plaf.basic.BasicDesktopIconUI;
  32.  
  33. /**
  34.  * Metal desktop icon.
  35.  * <p>
  36.  * Warning: serialized objects of this class will not be compatible with
  37.  * future swing releases.  The current serialization support is appropriate
  38.  * for short term storage or RMI between Swing1.0 applications.  It will
  39.  * not be possible to load serialized Swing1.0 objects with future releases
  40.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  41.  * baseline for the serialized form of Swing objects.
  42.  *
  43.  * @version 1.8 02/06/98
  44.  * @author Steve Wilson
  45.  */
  46. public class MetalDesktopIconUI extends BasicDesktopIconUI implements Serializable
  47. {
  48.  
  49.     JButton button;
  50.     JLabel label;
  51.     TitleListener titleListener;
  52.  
  53.     public static ComponentUI createUI(JComponent c)    {
  54.         return new MetalDesktopIconUI();
  55.     }
  56.  
  57.     public MetalDesktopIconUI() {
  58.     }
  59.  
  60.     protected void installDefaults(JInternalFrame.JDesktopIcon dIcon) {
  61.         super.installDefaults(dIcon);
  62.         LookAndFeel.installColorsAndFont(dIcon, "DesktopIcon.background", "DesktopIcon.foreground", "DesktopIcon.font");
  63.     dIcon.setOpaque(true);
  64.     }
  65.    
  66.     protected void installComponents(JInternalFrame.JDesktopIcon dIcon) {
  67.     JInternalFrame frame = dIcon.getInternalFrame();
  68.     Icon icon = frame.getFrameIcon();
  69.     String title = frame.getTitle();
  70.  
  71.     button = new JButton (title, icon);
  72.     button.addActionListener( new ActionListener() {
  73.                               public void actionPerformed(ActionEvent e) { deiconize(); }} );
  74.     button.setFont(dIcon.getFont());
  75.     button.setBackground(dIcon.getBackground());
  76.     button.setForeground(dIcon.getForeground());
  77.  
  78.     int buttonH = button.getPreferredSize().height;
  79.  
  80.     Icon drag = new MetalBumps((buttonH/3), buttonH,
  81.                    MetalLookAndFeel.getControlHighlight(),
  82.                    MetalLookAndFeel.getControlDarkShadow(),
  83.                    MetalLookAndFeel.getControl());
  84.     label = new JLabel(drag);
  85.     label.setBorder( new MatteBorder( 0, 2, 0, 1, dIcon.getBackground()) );
  86.     dIcon.setLayout(new BorderLayout(2, 0));
  87.     dIcon.add(button, BorderLayout.CENTER);
  88.     dIcon.add(label, BorderLayout.WEST);
  89.     dIcon.getInternalFrame().addPropertyChangeListener( titleListener = new TitleListener() );
  90.     }
  91.  
  92.     protected void uninstallComponents(JInternalFrame.JDesktopIcon dIcon) {
  93.     dIcon.setLayout(null);
  94.     dIcon.remove(label);
  95.     dIcon.remove(button);
  96.     dIcon.getInternalFrame().removePropertyChangeListener(titleListener);    
  97.     }
  98.  
  99.     public Dimension getPreferredSize(JComponent c) {
  100.     return null;
  101.     }
  102.   
  103.     class TitleListener implements PropertyChangeListener, Serializable {
  104.         public void propertyChange (PropertyChangeEvent e) {
  105.         if (e.getPropertyName().equals("title")) {
  106.         button.setText((String)e.getNewValue());
  107.       }
  108.     }
  109.     }
  110. }
  111.  
  112.  
  113.